2. Write a Python program to swap two variables
p = 5
q = 10
temp = p # Now temp value is = 5
p = q # Now temp value is p = 10
q = temp # Now temp value is q = 5
print("The p value is : ", p)
print("The q value is : ", q)
p = 5
q = 10
temp = p # Now temp value is = 5
p = q # Now temp value is p = 10
q = temp # Now temp value is q = 5
print("The p value is : ", p)
print("The q value is : ", q)